home *** CD-ROM | disk | FTP | other *** search
/ PC Users 1998 January / Cd Pc Users extra 16 enero 1999.iso / prog / inst / killapp / killapp.frm (.txt) < prev    next >
Encoding:
Visual Basic Form  |  1997-08-04  |  1.2 KB  |  44 lines

  1. VERSION 5.00
  2. Begin VB.Form TaskKiller 
  3.    Caption         =   "TaskKiller"
  4.    ClientHeight    =   705
  5.    ClientLeft      =   3510
  6.    ClientTop       =   3765
  7.    ClientWidth     =   3780
  8.    LinkTopic       =   "Form1"
  9.    ScaleHeight     =   705
  10.    ScaleWidth      =   3780
  11.    Begin VB.CommandButton CmdEndTask 
  12.       Caption         =   "End Task"
  13.       Height          =   495
  14.       Left            =   2400
  15.       TabIndex        =   2
  16.       Top             =   120
  17.       Width           =   1215
  18.    End
  19.    Begin VB.TextBox TaskText 
  20.       Height          =   285
  21.       Left            =   720
  22.       TabIndex        =   1
  23.       Text            =   "Internet Explorer"
  24.       Top             =   240
  25.       Width           =   1575
  26.    End
  27.    Begin VB.Label Label1 
  28.       Caption         =   "Task"
  29.       Height          =   255
  30.       Left            =   120
  31.       TabIndex        =   0
  32.       Top             =   240
  33.       Width           =   495
  34.    End
  35. Attribute VB_Name = "TaskKiller"
  36. Attribute VB_GlobalNameSpace = False
  37. Attribute VB_Creatable = False
  38. Attribute VB_PredeclaredId = True
  39. Attribute VB_Exposed = False
  40. Option Explicit
  41. Private Sub CmdEndTask_Click()
  42.     TerminateTask TaskText.Text
  43. End Sub
  44.